const sync.mutexStarving
11 uses
sync (current package)
mutex.go#L48: mutexStarving
mutex.go#L100: if old&(mutexLocked|mutexStarving) != 0 {
mutex.go#L126: if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
mutex.go#L141: if old&mutexStarving == 0 {
mutex.go#L144: if old&(mutexLocked|mutexStarving) != 0 {
mutex.go#L152: new |= mutexStarving
mutex.go#L163: if old&(mutexLocked|mutexStarving) == 0 {
mutex.go#L174: if old&mutexStarving != 0 {
mutex.go#L189: delta -= mutexStarving
mutex.go#L231: if new&mutexStarving == 0 {
mutex.go#L240: if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |